home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / AmiSlate1_2.lha / AmiSlate / ExampleRexx / easyreq.rexx < prev    next >
OS/2 REXX Batch file  |  1995-05-24  |  309b  |  10 lines

  1. /* An ARexx program demonstrating AmiSlate's EasyRequest function */
  2. parse arg CommandPort ActiveString
  3.  
  4. address (CommandPort)
  5. options results
  6.  
  7. EasyRequest '"'||"AmiSlate REXX Requester"||'"' '"'||"Please pick a number"||'"' "1|2|3|4|5|0"
  8. EasyRequest "Answer" '"'||"You picked option number "||rc||'"' "Yup"
  9.  
  10.